#!/bin/sh
echo "Content-type: text/html"
echo ""

ls /|while read line
do 
    echo "$line<br>"
done